home *** CD-ROM | disk | FTP | other *** search
- Public Class ColDocumento
- Dim mcol As Hashtable
- Public Sub New()
- mcol = New Hashtable()
- End Sub
- Public Sub Remove(ByVal chiave As String)
- mcol.Remove(chiave)
- End Sub
-
- Public Function Item(ByVal chiave As String) As Documento
- Return mcol.Item(chiave)
- End Function
-
- Public Sub Add(ByVal obj As Documento)
- mcol.Add(obj.Key, obj)
- End Sub
- Public Function Count() As Integer
- Return mcol.Count
- End Function
-
- Public Function Elements() As ICollection
- Return mcol.Values
- End Function
-
-
- End Class
-